home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / address_of.e < prev    next >
Text File  |  2000-03-25  |  5KB  |  225 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class ADDRESS_OF
  17.    --
  18.    -- For the special address form notation : $ feature_name
  19.    --
  20.  
  21. inherit EXPRESSION;
  22.  
  23. creation make
  24.  
  25. feature
  26.  
  27.    feature_name: FEATURE_NAME;
  28.  
  29.    is_writable: BOOLEAN is false;
  30.  
  31.    is_current: BOOLEAN is false;
  32.  
  33.    is_static: BOOLEAN is false;
  34.  
  35.    is_pre_computable: BOOLEAN is false;
  36.  
  37.    is_result: BOOLEAN is false;
  38.  
  39.    is_void: BOOLEAN is false;
  40.  
  41.    is_manifest_string: BOOLEAN is false;
  42.  
  43.    is_manifest_array: BOOLEAN is false;
  44.  
  45.    isa_dca_inline_argument: INTEGER is 0;
  46.  
  47.    use_current: BOOLEAN is true;
  48.  
  49.    can_be_dropped: BOOLEAN is false;
  50.  
  51.    c_simple: BOOLEAN is true;
  52.  
  53.    static_result_base_class: BASE_CLASS is
  54.       do
  55.          Result := small_eiffel.get_class(as_pointer);
  56.       end;
  57.  
  58.    static_value: INTEGER is
  59.       do
  60.       end;
  61.  
  62.    dca_inline_argument(formal_arg_type: TYPE) is
  63.       do
  64.       end;
  65.  
  66.    result_type: TYPE_POINTER is
  67.       do
  68.          Result := type_pointer;
  69.       end;
  70.  
  71.    assertion_check(tag: CHARACTER) is
  72.       do
  73.       end;
  74.  
  75.    afd_check is
  76.       do
  77.       end;
  78.  
  79.    compile_target_to_jvm, compile_to_jvm is
  80.       do
  81.          eh.add_position(start_position);
  82.          fatal_error(fz_jvm_error);
  83.       end;
  84.  
  85.    jvm_branch_if_false: INTEGER is
  86.       do
  87.       end;
  88.  
  89.    jvm_branch_if_true: INTEGER is
  90.       do
  91.       end;
  92.  
  93.    compile_to_jvm_into(dest: TYPE): INTEGER is
  94.       do
  95.       end;
  96.  
  97.    collect_c_tmp is
  98.       do
  99.       end;
  100.  
  101.    compile_to_c is
  102.       do
  103.          cpp.put_string("/*$*/((void*)");
  104.          run_feature.address_of_c_mapping;
  105.          cpp.put_character(')');
  106.       end;
  107.  
  108.    frozen mapping_c_target(target_type: TYPE) is
  109.       do
  110.          compile_to_c;
  111.       end;
  112.  
  113.    frozen mapping_c_arg(formal_arg_type: TYPE) is
  114.       do
  115.          compile_to_c;
  116.       end;
  117.  
  118.    c_declare_for_old is
  119.       do
  120.       end;
  121.  
  122.    compile_to_c_old is
  123.       do
  124.       end;
  125.  
  126.    compile_to_jvm_old is
  127.       do
  128.       end;
  129.  
  130.    to_runnable(ct: TYPE): like Current is
  131.       local
  132.          rc: RUN_CLASS;
  133.          bc: BASE_CLASS;
  134.       do
  135.          if current_type = Void then
  136.             current_type := ct;
  137.             rc := ct.run_class;
  138.             bc := ct.base_class;
  139.             if bc.has(feature_name) then
  140.                run_feature := rc.get_rf_with(feature_name);
  141.                address_of_pool.register_for(Current);
  142.             else
  143.                eh.add_position(feature_name.start_position);
  144.                eh.append(fz_vuar4);
  145.                eh.print_as_fatal_error;
  146.             end;
  147.             Result := Current;
  148.          else
  149.             !!Result.make(feature_name);
  150.             Result := Result.to_runnable(ct);
  151.          end;
  152.       end;
  153.  
  154.    stupid_switch(r: ARRAY[RUN_CLASS]): BOOLEAN is
  155.       do
  156.       end;
  157.  
  158.    precedence: INTEGER is
  159.       do
  160.          Result := atomic_precedence;
  161.       end;
  162.  
  163.    start_position: POSITION is
  164.       do
  165.          Result := feature_name.start_position;
  166.       end;
  167.  
  168.    pretty_print is
  169.       do
  170.          fmt.put_character('%D');
  171.          feature_name.pretty_print;
  172.       end;
  173.  
  174.    print_as_target is
  175.       do
  176.          error(start_position,"ADDRESS_OF/does_not_understand");
  177.       end;
  178.  
  179.    bracketed_pretty_print is
  180.       do
  181.          fmt.put_character('(');
  182.          pretty_print;
  183.          fmt.put_character(')');
  184.       end;
  185.  
  186.    short is
  187.       do
  188.          short_print.a_character('%D');
  189.          feature_name.short;
  190.       end;
  191.  
  192.    short_target is
  193.       do
  194.          bracketed_short;
  195.          short_print.a_dot;
  196.       end;
  197.  
  198.    jvm_assign is
  199.       do
  200.       end;
  201.  
  202. feature {ADDRESS_OF_POOL}
  203.  
  204.    run_feature: RUN_FEATURE;
  205.          -- Corresponding one when runnable.
  206.  
  207. feature {NONE}
  208.  
  209.    make(fn: like feature_name) is
  210.       require
  211.          fn /= Void
  212.       do
  213.          feature_name := fn;
  214.       ensure
  215.          feature_name = fn;
  216.       end;
  217.  
  218.    current_type: TYPE;
  219.  
  220. invariant
  221.  
  222.    feature_name /= Void
  223.  
  224. end --  ADDRESS_OF
  225.